home *** CD-ROM | disk | FTP | other *** search
/ Erotic Games: Memory / Erotic Games: Memory.iso / mac / air_installers / AdobeAIR.exe / setup.swf / scripts / mx / managers / ISystemManager.as < prev    next >
Text File  |  2009-02-12  |  2KB  |  61 lines

  1. package mx.managers
  2. {
  3.    import flash.display.LoaderInfo;
  4.    import flash.display.Sprite;
  5.    import flash.display.Stage;
  6.    import flash.events.IEventDispatcher;
  7.    import flash.geom.Rectangle;
  8.    import flash.text.TextFormat;
  9.    import mx.core.IChildList;
  10.    import mx.core.IFlexModuleFactory;
  11.    
  12.    public interface ISystemManager extends IEventDispatcher, IChildList, IFlexModuleFactory
  13.    {
  14.        
  15.       
  16.       function get focusPane() : Sprite;
  17.       
  18.       function get loaderInfo() : LoaderInfo;
  19.       
  20.       function get toolTipChildren() : IChildList;
  21.       
  22.       function set focusPane(param1:Sprite) : void;
  23.       
  24.       function isTopLevel() : Boolean;
  25.       
  26.       function get popUpChildren() : IChildList;
  27.       
  28.       function get screen() : Rectangle;
  29.       
  30.       function isFontFaceEmbedded(param1:TextFormat) : Boolean;
  31.       
  32.       function get rawChildren() : IChildList;
  33.       
  34.       function get topLevelSystemManager() : ISystemManager;
  35.       
  36.       function getDefinitionByName(param1:String) : Object;
  37.       
  38.       function activate(param1:IFocusManagerContainer) : void;
  39.       
  40.       function deactivate(param1:IFocusManagerContainer) : void;
  41.       
  42.       function get cursorChildren() : IChildList;
  43.       
  44.       function set document(param1:Object) : void;
  45.       
  46.       function get embeddedFontList() : Object;
  47.       
  48.       function set numModalWindows(param1:int) : void;
  49.       
  50.       function removeFocusManager(param1:IFocusManagerContainer) : void;
  51.       
  52.       function get document() : Object;
  53.       
  54.       function get numModalWindows() : int;
  55.       
  56.       function addFocusManager(param1:IFocusManagerContainer) : void;
  57.       
  58.       function get stage() : Stage;
  59.    }
  60. }
  61.